home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / ObjectReferenceAttributes.java < prev    next >
Text File  |  1998-08-01  |  1KB  |  38 lines

  1. package com.symantec.itools.vcafe.beans;
  2.  
  3. public class ObjectReferenceAttributes
  4. {
  5.     /**
  6.      * Object Reference Properties (ORP) are properties that refer to objects
  7.      * All ORPs have Default as a choice
  8.      * Default means no code generation will occur for this property
  9.      * They have the options of None, which will generate a set<property>(null)
  10.      */
  11.     
  12.     /**
  13.      * Boolean attribute (default is false)
  14.      * If true the ORP will include the choice of None
  15.      * This means it will generate a set<property>(null)
  16.      */
  17.     public static final String OBJECTREFERENCE_HAS_NONE_ATTRIBUTE = "objectReferenceHasNone";
  18.     
  19.     /**
  20.      * Boolean attribute (default is false)
  21.      * If true the ORP will change the name of the Default choice to None
  22.      * You cannot have this option true, if OBJECTREFERENCE_HAS_NONE_ATTRIBUTE is true
  23.      */
  24.     public static final String OBJECTREFERENCE_DEFAULT_IS_NONE_ATTRIBUTE = "objectReferenceDefaultIsNone";
  25.     
  26.     /**
  27.      * Boolean attribute (default is true)
  28.      * Scope of a ORP is the allowed range for references
  29.      */
  30.     public static final String OBJECTREFERENCE_SCOPE_IS_ROOT_ATTRIBUTE = "objectReferenceScopeIsRoot";
  31.     
  32.     /**
  33.      * Boolean attribute (default is false)
  34.      * 
  35.      */
  36.     public static final String OBJECTREFERENCE_SHOW_POSSIBLE_COMPONENT_REFERENCES_ATTRIBUTE = "objectReferenceShowPossibleComponentReferences";
  37. }
  38.